home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: OptionsPanel.h,v 1.9 1993/05/18 03:55:25 davis Exp $ */
-
-
- #import <objc/Object.h>
-
- @class Status;
-
- @interface OptionsPanel:Object
- {
- id panel;
- Status *status;
- @private
- BOOL _textChanged;
- }
-
- - init;
-
- - panel;
- - showPanel:sender;
- - forceUpdate;
-
-
- /** Window Delegate Methods **/
-
- - windowDidUpdate:sender;
-
-
- /** Text Delegate Methods **/
-
- - textDidEnd:textObject endChar:(unsigned short)whyEnd;
- - (BOOL) textWillChange:textObject;
-
-
- @end
-